home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / utmisc2 / gflogger.lha / GFLogger / Example.rexx next >
OS/2 REXX Batch file  |  1996-04-29  |  761b  |  32 lines

  1. /*
  2.  * A simple ARexx script for GFLogger. It will add a few lines
  3.  * to the log and then close the window after five seconds.
  4.  *
  5.  * You still have to quit it though. Bring back the GUI by
  6.  * using LCommand z and use the menuitem Quit, or use the
  7.  * Exchange program.
  8.  *
  9.  * 1.0 - First release.
  10.  *
  11.  */
  12.  
  13. address GFREXXPORT
  14.  
  15. LOG "This will be at the top!"
  16. LOGEND "Here's my address:"
  17. LOGEND ""
  18. LOGEND "Mathias Axelsson"
  19. LOGEND "Väpnaregatan 29"
  20. LOGEND "S-582 40  LINKÖPING"
  21. LOGEND ""
  22. LOGEND "EMail: max@coders.ct.se"
  23. LOGEND ""
  24. LOGEND This will all be in upper case
  25. LOGEND ""
  26. LOGEND "Try the resize so you can see all of this line!"
  27. LOGEND ""
  28. LOGEND "Let's add a line at the top!"
  29. LOGBEGIN ""
  30. LOG "This will be the top line when the script is finished!"
  31. CLOSEDEL 5
  32.